home *** CD-ROM | disk | FTP | other *** search
- // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
- // see COPYRIGHT for reuse legalities
- //
-
- /* WW3DText.h
- * Fashioned by Ian Wilkinson.
- * Inception was Sun Jul 17 16:08:23 BST 1994.
- *
- * My History:
- * Hacked by wave on Aug 20
- * Hacked more by wave on Aug 25 to add archiving
- */
-
- #import "RIBCommandList.h"
- #import "Protocol_WWRenderable.h"
-
- @interface WW3DText:Object < WWRenderable >
- {
- Font *currentFont;
- char *currentText;
- RIBCommandList *ribCommandList;
- RtBound boundingBox;
- Storage *outline, *textMetrics, *loops;
- BOOL dirtyBoundingBox;
- id myShape;
- int justification; // NX_LEFTALIGNED, NX_RIGHTALIGNED, NX_CENTERED
- }
-
- - initWithCharPath:(const char *)theText usingFont:(Font *)theFont myShape:newMyShape justification:(int)newJustification;
-
-
- @end
-